/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* custom */
a {
  color: #7e8c8d;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}
li {
  list-style: none;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
i {
  display: block;
}
.clear {
  clear: both;
}
.clear:after {
  content: "020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
button {
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #f5f5f5;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #dddddd;
}

.el-radio-group {
  float: left;
}
.el-dialog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.el-dialog__headerbtn:focus .el-dialog__close,
.el-dialog__headerbtn:hover .el-dialog__close {
  color: #909399;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

/*主轴为水平方向，起点在左边*/
.flexRow {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

/*主轴为垂直方向，起点在上沿*/
.flexColumn {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
/* 反转 wrap 排列 */
.flexWrapReverse {
  -ms-flex-direction: wrap-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.flex1 {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}

/*交叉轴的起点对齐*/
.alignStart {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

/*交叉轴的终点对齐*/
.alignEnd {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

/*交叉轴的中点对齐*/
.alignCenter {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

/*项目的第一行文字的基线对齐*/
.alignBaseline {
  -ms-align-items: baseline;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*如果项目未设置高度或设为auto，将占满整个容器的高度*/
.alignStretch {
  -ms-align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/*换行，第一行在上方*/
.flexWrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*主轴左对齐*/
.justifyStart {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

/*主轴右对齐*/
.justifyEnd {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

/*主轴居中对齐*/
.justifyCenter {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

/*主轴两端对齐,项目之间的间隔都相等*/
.justifyBetween {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

/*每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍*/
.justifyAround {
  -ms-flex-pack: justify;
  justify-content: space-around;
}

/*覆盖父级交叉轴的起点对齐*/
.alignSelfStart {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

/*覆盖父级交叉轴的终点对齐*/
.alignSelfEnd {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

/*覆盖父级交叉轴的中点对齐*/
.alignSelfCenter {
  -ms-flex-item-align: center;
  align-self: center;
}

/*覆盖父级项目的第一行文字的基线对齐*/
.alignSelfBaseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

/*覆盖父级如果项目未设置高度或设为auto，将占满整个容器的高度*/
.alignSelfStretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

/* 显示一行文字 */
.line1 {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 显示2行文字 */
.line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.el-message__icon {
  font-size: 16px;
}
